home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / dvsv16.zip / WWIV.BAT < prev   
DOS Batch File  |  1993-12-27  |  684b  |  37 lines

  1. @echo off
  2. goto start
  3.  
  4. :baud1200
  5. BBS /B1200 /O
  6. goto start
  7.  
  8. :baud2400
  9. BBS /B2400 /O
  10. goto start
  11.  
  12. :localuser
  13. BBS /V1 /M /O
  14. goto start
  15.  
  16. :event1
  17. echo.
  18. echo Put Your Event Instruction Here.
  19. echo.
  20. goto start
  21.  
  22. :start
  23. echo.
  24. echo Put Your Instruction Here.
  25. echo.
  26. DVSWITCH
  27. if errorlevel = 4 goto event1
  28. if errorlevel = 3 goto localuser
  29. if errorlevel = 2 goto baud2400
  30. if errorlevel = 1 goto baud1200
  31.  
  32. REM     This batch file assumes that you are running a WWIV (Wayne Bell
  33. REM     1990-92) BBS program with a maximum baud rate of 2400bps, and
  34. REM     an Exit Code Modifier of 0.  Please refer to the DVSwitch v1.6
  35. REM     document file for more information.
  36.  
  37.